runtime.p.numTimers (field)

10 uses

	runtime (current package)
		proc.go#L3274: 		if pp != getg().m.p.ptr() || int(atomic.Load(&pp.deletedTimers)) <= int(atomic.Load(&pp.numTimers)/4) {
		proc.go#L4659: 		pp.numTimers = 0
		proc.go#L5590: 	if atomic.Load(&pp.numTimers) > 0 {
		proc.go#L5598: 	if atomic.Load(&pp.numTimers) == 0 {
		runtime2.go#L720: 	numTimers uint32
		time.go#L300: 	atomic.Xadd(&pp.numTimers, 1)
		time.go#L394: 	atomic.Xadd(&pp.numTimers, -1)
		time.go#L418: 	atomic.Xadd(&pp.numTimers, -1)
		time.go#L951: 	atomic.Xadd(&pp.numTimers, -cdel)
		time.go#L979: 	if numTimers := int(atomic.Load(&pp.numTimers)); len(pp.timers) != numTimers {